home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / gus / digestv9.zip / V9N16G.TXT < prev    next >
Text File  |  1993-12-16  |  22KB  |  570 lines

  1. Apparently-To: john.smith@gravis.com
  2.  
  3.  
  4. GUS Daily Digest            Thu, 16 Dec 93  0:07         Volume 9: Issue  16  
  5.  
  6. Today's Topics:
  7.           16-bit daughter card: Often asked, never answered
  8.                              16-bit DMAs
  9.                    16 bit recording add on board...
  10.                                Answers
  11.                              DMA problems
  12.                              Doom-OS/2??
  13.                        DOOM.. (de dum, de doom)
  14.                           DOOM and Ultramid
  15.                   Doom batch file makes life easy...
  16.                               Doom ram?
  17.                             Fred's clicks
  18.                   GUS & Toshiba 3401 internal cd-rom
  19.                     GUS and Doom possible project?
  20.                        GUS Daily Digest V9 #15
  21.            Mouse Drivers (was Re: GUS Daily Digest V9 #14)
  22.                              New File....
  23.                   Windows - "Driver already in use"
  24.  
  25. Standard Info:
  26.     - Meta-info about the GUS can be found at the end of the Digest.
  27.     - Before you ask a question, please READ THE FAQ.
  28.  
  29. ----------------------------------------------------------------------
  30.  
  31. Date: Wed, 15 Dec 93 8:46:59 MST
  32. From: Stuart Yoshida <yoshida@elektra.fc.hp.com>
  33. Subject: 16-bit daughter card: Often asked, never answered
  34.  
  35.   I spoke with Chris Yuzik of Gravis Marketing the other day (9
  36.   December), and I asked him about the 16-bit daughter card.  He was
  37.   non-committal, of course, but he did say that it *WILL* come out,
  38.   thank goodness ;-).  He also unfortunately said that it won't be
  39.   avaiable before Christmas.  So sometime in the New Year we can look
  40.   forward to the 16-bit card.
  41.  
  42.   IN SUMMARY:  The 16-bit daughter will come out after the first of the
  43.   year.  The exact date is still to be determined.
  44.  
  45. --
  46.  
  47.   Stuart Yoshida
  48.  
  49. Internet: yoshida@elektra.fc.hp.com
  50.    Voice: (303) 229-2324
  51.  
  52. ------------------------------
  53.  
  54. Date: Wed, 15 Dec 93 10:40:10 EST
  55. From: davidm@marcam.com (David MacMahon)
  56. Subject: Re: 16-bit DMAs
  57.  
  58. >Date: Tue, 14 Dec 1993 13:03:53 -0200 (GMT-2:00)
  59. >From: sn@phoenix.oulu.fi (Sami Nieminen)
  60. >Subject: 16-bit DMAs ?
  61. >
  62. >   Following thing caught my attention when browsing through the Ultrasound
  63. >README-file. When they told about those faulty OPTI chipsets, they said 
  64. >that DMAs 0-3 are 8-bit, the rest are 16-bit.  
  65. >    Ofcourse I checked whether my motherboard was faulty. No errors, I could
  66. >notice no difference of any kind between 8-/16-bit DMAs. This baffled me.
  67. >What's the difference ? They implied that using 8-bit DMA is something you can
  68. >barely live with, but actually the default DMA for GUS is 8-bit. So I'd be
  69. >curious to know if there's any use to set your GUS to use other than the
  70. >default DMA, and what that use could be.  
  71.  
  72. With 8-bit DMA channels, one byte of data is transferred per DMA cycle.  
  73. With 16-bit DMA channels, two bytes of data are transferred per DMA cycle.  
  74. This means that transferring data to/from the GUS on a 16-bit DMA channel 
  75. uses half as many bus cycles as transferring the same data on an 8-bit 
  76. channel.  It therefore takes half as long to tranfer data via a 16-bit DMA 
  77. channel as it does over an eight bit DMA channel.  This is helpful for 
  78. several reasons.
  79.  
  80. 1) Patches are able to be loaded in half the time (this especially helps 
  81. patch caching applications).
  82.  
  83. 2) When recording to disk, a 16-bit DMA transfer is using half as many bus 
  84. cycles as an 8-bit DMA transfer would.  This leaves more bus cycles for the 
  85. disk controller.
  86.  
  87. 3) When using a program that does simultaneous recording and playback and 
  88. writing to disk, such as my program GusDelay (sorry for the balatant plug 
  89. :-)), bus cycles are very precious indeed.  Using two different 16-bit DMA 
  90. channels greatly improves the throughput of such programs.
  91.  
  92. These advantages are only performance advantages, not feature advantages.  
  93. IOW, everything that can be done with a 16-bit channel can be done with an 
  94. 8-bit DMA channel, it just takes longer.
  95.  
  96. There may be other advantages that I'm forgetting now.  Can anybody think of 
  97. more?
  98.  
  99. Dave
  100.  
  101. David MacMahon
  102. Software Engineer
  103. davidm@marcam.com
  104.  
  105. ------------------------------
  106.  
  107. Date: Wed, 15 Dec 1993 06:02:07 -0500
  108. From: "Mark C. Ng" <mcng@undergrad.uwaterloo.ca>
  109. Subject: 16 bit recording add on board...
  110.  
  111. Anyone in high tower of GRAVIS:
  112.  
  113. Becuase of the non-existance of the announcement of the 16 bit rec. add 
  114. on I suppose WE CAN ALL forget about the product being released before 
  115. Christmas and New Years?!?!!    John??  Chris?  anyone?
  116.  
  117. What are you guys working on?
  118.  
  119. ------------------------------
  120.  
  121. Date: Wed, 15 Dec 1993 12:17:32 -0500 (EST)
  122. From: Phat H Tran <ptran@sciborg.uwaterloo.ca>
  123. Subject: Answers
  124.  
  125. > Date: Tue, 14 Dec 1993 13:03:53 -0200 (GMT-2:00)
  126. > From: sn@phoenix.oulu.fi (Sami Nieminen)
  127. > Subject: 16-bit DMAs ?
  128. >     Ofcourse I checked whether my motherboard was faulty. No errors, I could
  129. > notice no difference of any kind between 8-/16-bit DMAs. This baffled me.
  130. > What's the difference ? They implied that using 8-bit DMA is something you can
  131.  
  132. There is really no difference between using a 16-bit DMA and an 8-bit DMA
  133. for your GUS.  The only thing that the DMA affects is the speed with 
  134. which samples are transferred to the GUS, but even with 8-bit, the transfer
  135. is already faster than the disk seeks.  Since the sample DMA transfer isn't
  136. the bottle neck, going to a 16-bit channel won't speed anything up noticeably.
  137.  
  138. > Date: Tue, 14 Dec 93 11:50:53 -0800
  139. > From: fredh@hpcvusd.cv.hp.com
  140. > Subject: click prevention
  141. > Is there a tool available to check the DRAM on the GUS ?  I've been
  142. > having some clicks that I can hear when wearing headphones.  They
  143. > hurt my ear.  It is only in the left channel.  Does this indicate
  144. > anything?  Since I'm using the patches that came with the GUS
  145. > I assume they were done with good samples, good loop points and 
  146. > good voice handling routines.   I like the GUS a lot but the
  147. > clicks I'm getting are terrible.  I'm using Power Chords to produce
  148. > the music that has the clicks.
  149.  
  150. Sound's like you're experiencing clipping since the "clicking" is loud
  151. enough to hurt your ears.  Clipping occurs when the voices are played
  152. too loudly together, causing the output to crackle somewhat.  Turn down
  153. the MIDI volume using the mixer slightly and the crackles should 
  154. disappear.
  155.  
  156. > Date: Tue, 14 Dec 1993 20:28:14 -0800
  157. > From: jakub@eskimo.com (Jake Cholewczynski)
  158. > Subject: Re: GUS Daily Digest V9 #11
  159. > DOOM? Personally I tried it and GUS sounds like a SB or SBOS ver. 1.2 the sound 
  160. > is not clean must have been recorded at really poor quality, the game looks great slow on a 386 but cool but sound is not anything like SCII or Epic's Pinball
  161.  
  162. Umm... I don't think your were getting proper GUS sounds from the game.  
  163. DOOM 1.0 requires that you fetch a missing file and set your IRQs < 9 
  164. before it will support the GUS correctly.
  165.  
  166. > Date: Tue, 14 Dec 1993 16:52:16 -0500
  167. > From: <Ken@oti.on.ca>
  168. > Subject: Need Syndicate SBOS parameters
  169. > I, and four others at our company, have recently purchased
  170. > GUS'.  One game that I've been playing using my SBPro but
  171. > can't get to work with my GUS is Syndicate.  If anyone's had
  172. > any success, please post the parameters. Thanks,
  173.  
  174. Syndicate requires that your soundcard be at port 220h, and
  175. that the IRQ be 7.  If you change the IRQ to something else,
  176. then start the game by typing main.exe /iirq<IRQ>.  You can't
  177. use any other port address other than 220h.
  178.  
  179. > Date: Tue, 14 Dec 93 14:15:42 -0500
  180. > From: decvax!cg-atla.agfa.com!pasky@uucp-gw-2.pa.dec.com (Robert Pasky)
  181. > Subject: Lock L/R not working?
  182. > --text follows this line--
  183. > I've got an annoying problem with the new GUS0035.ZIP that
  184. > I haven't seen anyone mention yet:
  185. > The "Lock L/R" checkbox in the Driver Setup dialog doesn't "stick."
  186.  
  187. This is a bug that's getting fixed.
  188.  
  189. > I can check the box, close the dialog and re-open it immediately
  190. > and the box is cleared. I've tried variations, like restarting
  191. > Windows, but still the box is cleared. This, of course, affects
  192. > the Mixer app. and the annoying thing is that the right Midi
  193. > slider always comes up at minimum volume when Windows starts up!
  194.  
  195. The left MIDI volume slider is just there for decoration.  It doesn't
  196. do anything.  The MIDI volume is only controlled by one slider.
  197.  
  198. Phat.
  199.  
  200. ------------------------------
  201.  
  202. Date: 16 Dec 93 14:29:05 GMT+1000
  203. From: SXD9@major-mitchell.mit.csu.edu.au
  204. Subject: DMA problems
  205.  
  206. I sent this letter to tech@gravis.com about two days ago and have not
  207. recieved a reply yet. I was wondering if anyone out there has had the 
  208. same problem. If you have, or if you think you know what the problem 
  209. is, them please mail me!!!!
  210.  
  211. >Hi, I am a very satisfied owner of a GUS and have owned it for over a 
  212. >year.  Until now, the board has worked perfectly and has sounded 
  213. >great, but now it is giving an error and the sounds have gone 
  214. >completely wrong.  
  215.  
  216. >Using 'setgus' and testing the board, it seems that the irq's and the 
  217. >memory is perfectly OK, but when it tests the sbos DMA and the DMA 
  218. >channel, it gives an error "bad DMA data transfer (read)".  Does this 
  219. >mean DMA controller chip on the board has fried????? Please help me 
  220. >because the warranty has run out on the board and I am starting to 
  221. >suffer withdrawal symptoms!! 
  222.  
  223. >If you haven't noticed, I come from Australia....so if you could also 
  224. >send me a list of places that could repair it, although this is 
  225. >probably asking too much.  Oh no....it happennnning aggaaain  ....al 
  226. >ahha
  227. >GUS GUS GUS GUS I WANT MY GUS BACK........WAHHHHHHHHHHHH
  228. >HAJLSHG
  229. >ASLK;ASKDG
  230. >ASK;GASKJS
  231.  
  232. >hnms
  233.  
  234. >erh... sorry about that, it only started happening when my GUS 
  235. >stopped working. Mabey it will go away once it is repaired.
  236.  
  237. >btw.. I've tried  - changing DMA channels
  238. >                 - pulling my board out and into another slot
  239. >                  - screaming and pulling my hair out.
  240. >                  - Pulling out most of my 1M memory so 256K is left.
  241.  
  242. >Note that the memory test sometimes fails, sometimes works, and 
  243. >sometimes reports that I have 1024K and said all the memory is 
  244. >OK when i only have 256K (this only happened once).
  245.  
  246. Thanks in advance........
  247.                             David.
  248.                             
  249.  
  250. ------------------------------
  251.  
  252. Date: Wed, 15 Dec 1993 14:07:07 -0400 (EDT)
  253. From: Powered by Glucose <JKS4675@ritvax.isc.rit.edu>
  254. Subject: Doom-OS/2??
  255.  
  256. After looking over the settings in the README.EXE file, I set up the object.
  257.  
  258. The program gets me to the DOOM logo screen- I get sounds fine too. But the
  259. game never starts.
  260.  
  261. The README hints at some command line parameters/options. Am I missing some?
  262. Also, why is the DPMI disabled, XMS set to 0, EMS set to 0? What memory does
  263. this program need to run??
  264.  
  265. Any hints?
  266.  
  267. Jeff
  268.  
  269. ------------------------------
  270.  
  271. Date: Wed, 15 Dec 93 11:29:34 GMT
  272. From: bre@os.is (Bjarni R. Einarsson)
  273. Subject: DOOM.. (de dum, de doom)
  274.  
  275. Hey yall.
  276.  
  277.     Yup, it is yet another DOOM post :)  Has anybody else out there 
  278. had trouble with ID's DEICE program?  I tried to install Doom from the 
  279. 3x720k zip files, but the DEICE program just farted at me.  (yes, I 
  280. unzipped them, and yes I tried this from the hard disk and the floppies.)
  281.  
  282.     It said I lacked disk space (I didn't).. or it told me to
  283. "insert B disk" (in place of the C: drive, har har).  I solved the
  284. problem.. in a rather irritating way.  I did this:
  285.  
  286. copy  doom1_0.1 + doom1_0.2 + doom1_0.3 doom1_0.exe
  287.  
  288.     And it worked!  That drove me nuts.  That goddarn DEICE program
  289. was just a copy program with an attitude.  Now, I just gotta find myself
  290. 2 more megz of RAM. *sob*  After all that trouble I can't play it!  A big
  291. :-p to whoever said it only needed 2 MB of RAM.
  292.  
  293. P.S.    DOOM is really cool.  I tested it on one of the 486es here at 
  294.     work before taking it home.. Wow. :-)  Time to upgrade my 'lil
  295.     old 386sx..
  296.  
  297. PS/2    I'm still looking for .MOD composers to help me with GUS music
  298.     for the game(s) I'm writing... DOOM is giving me an inferiority
  299.     complex though.
  300.  
  301.  Bjarni R. Einarsson __/\__ E-Mail:  Bre@os.is __/\__ IRC: Juggler
  302. ____________________/      \__________________/      \_____________
  303. "I believe it's very hard to have fun in Iceland without fish being
  304.  involved in some way."  -- Looking for a good place to party
  305.                            (Terry Pratchett, Johnny and the Dead)
  306.  
  307. ------------------------------
  308.  
  309. Date: Wed, 15 Dec 1993 13:58:00 -0800 (PST)
  310. From: Telepathic Surgery <yaga@u.washington.edu>
  311. Subject: DOOM and Ultramid
  312.  
  313. I don't know about the rest of you, but when I play DOOM without loading 
  314. ultramid, all I get are crappy little pops and clicks for sound, but when 
  315. I do load ultramid I get pretty decent, albeit buggy, sound fx.  How are 
  316. you getting good sound w/o ultramid?  Yes, I have the dmxgus.ini file and 
  317. all that, my GUS is at the default options, but the sound just doesn't 
  318. work well if I don't load ultramid.  What am I missing here?
  319.  
  320. chris
  321. yaga@u.washington.edu
  322.  
  323. ------------------------------
  324.  
  325. Date: Thu, 16 Dec 1993 00:30:55 +1100 (EST)
  326. From: Iain Huxley <ihuxley@ucc.su.OZ.AU>
  327. Subject: Doom batch file makes life easy...
  328.  
  329. Just a quick note: for all those still whinging about doom in 
  330. one way or another... this batch file (along with DMXGUS.INI) 
  331. should solve all your problems so long as there isn't an 
  332. interrupt conflict:
  333.  
  334. "GO.BAT"
  335. *******************************
  336. @echo off
  337. set ultrasnd=220,1,1,7,7
  338. ultrinit
  339. doom
  340. set ultrasnd=220,1,1,11,7
  341. ultrinit
  342. *******************************
  343.  
  344. stick it in the directory and run it to run doom...
  345. N.B. this assumes you have standard settings to start with!
  346.  
  347. I assume most people have already done something like this but 
  348. I have posted it for the non-GUS-literate of you ;-) 
  349.  
  350. Iain
  351.  
  352.  
  353. ------------------------------
  354.  
  355. Date: Wed, 15 Dec 93 20:54:59
  356. From: jeffrey.stewart@oubbs.telecom.uoknor.edu
  357. Subject: Doom ram?
  358.  
  359. Hello music lovers,
  360.      Does anyone know how much free RAM DOOM requires to run?  My system has
  361. 620k largest executable program size but still I get an out of memory error
  362. when trying to run DOOM.           Thanx in advance
  363.                                                           Jeff
  364.  
  365. ------------------------------
  366.  
  367. Date: 15 Dec 93 08:48:42 EST
  368. From: "Eric Bell, Howling Dog Systems" <71333.2166@CompuServe.COM>
  369. Subject: Fred's clicks
  370.  
  371. Fred writes...
  372.  
  373. > I like the GUS a lot but the clicks I'm getting are terrible.  I'm using
  374. > Power Chords to produce the music that has the clicks.
  375. > Fred Handloser
  376.  
  377. Fred, try exporting the Power Chords song to a standard MIDI file, then
  378. playing with PLAYMIDI or Media Player. See if the clicks are still there. 
  379.  
  380. Eric
  381.  
  382. ------------------------------
  383.  
  384. Date: Wed, 15 Dec 93 13:19:54 PST
  385. From: brawicz@sfu.ca
  386. Subject: GUS & Toshiba 3401 internal cd-rom
  387.  
  388. Hello,
  389.   I am planning on buying a cd-rom drive for my 486, for which I
  390. also have a GUS. I have settled for the Toshiba 3401 internal
  391. cd-rom drive and I would buy it together with its own scsi-2
  392. controller and cable. Has anyone with a GUS installed had any
  393. problems with this cd-rom drive or the controller supplied
  394. with it (I assume it's Toshiba's own and that they always supply
  395. the same one with their drives) ?
  396.  
  397. Thanks,
  398.   Bolko Rawicz
  399.  
  400. ------------------------------
  401.  
  402. Date: Wed, 15 Dec 1993 10:05:51 -0800 (PST)
  403. From: Mark Harrison <harrison@lclark.edu>
  404. Subject: Re: GUS and Doom possible project?
  405.  
  406. On Mon, 13 Dec 1993, GUS Server wrote:
  407.  
  408. > Date: Sun, 12 Dec 1993 22:14:48 -0500 (EST)
  409. > From: Phat H Tran <ptran@sciborg.uwaterloo.ca>
  410. > Subject: Answers to DOOM, SB IRQ timeout, and possibly other questions
  411. > [much deleted]
  412.  
  413. [ditto]
  414.  
  415. > Doom does not use Ultramid, nor does it have 3D sound.  It uses an
  416. > internal GUS driver that appears to have cannabalized a lot of the
  417. > code from Ultramid, and the sound effects are only panned left or
  418. > right.  The sounds also appear to be mixed in software instead of
  419. > being loaded into GUS RAM and triggered from there. 
  420.  
  421. Well, in case people don't know, ID plans on releasing a lot of the specs
  422. for the game for people to write add-ons.  I had a really great idea for
  423. the GUS, but since I'm not much into GUS programming, I though I'd pass
  424. this along for someone else to tackle.
  425.  
  426. How hard (assuming we get the info that's needed) would it be to write a
  427. new sound driver to really take advantage of the GUS's capabilities?  I
  428. know the game runs pretty smoothly on my lowly 386-33, but if the game
  429. used the GUS to do the mixing rather than software, couldn't we expect the
  430. game to run much faster?  I know that's been the case with other games
  431. (need a 486/SB to get the same speed that a 386/GUS offers.)  That would sure
  432. be a big help to those without 486's. 
  433.  
  434. Anyway, just something for the GUS programmer's out there to think about.
  435.  
  436. Mark Harrison
  437. harrison@sun.lclark.edu
  438.  
  439. ------------------------------
  440.  
  441. Date: Wed, 15 Dec 93 18:06:14 CST
  442. From: Bryan Larsen <blarsen@robinhood.engg.uregina.ca>
  443. Subject: Re: GUS Daily Digest V9 #15
  444.  
  445. Sorry about that folks, i made a typo yesterday.  It's ftp.novelL.com,
  446. missed that extra l.  Anyways, you can also try risc.ua.edu, or if that
  447. fails, there are about 20 others on archie.  Again the files to get DOOM 
  448. to work on a network without Novell Netware installed are:
  449.  
  450. ftp.novell.com: /pub/netwire/novfiles/client.kit/doswin/files
  451. risc.ua.edu: /pub/network/netwire/...
  452.  
  453. wsdos1.exe
  454. wsdrv2.exe
  455.  
  456. This is actually a PD client version of Netware, so it probably won't
  457. work on top of your existing net software.  Here's where DOS's multiboot
  458. comes in handy.
  459.  
  460. Sorry about posting this here, but I don't know how many people caught
  461. it before they got too annoyed with the DOOM deluge on comp.sys.ibm.pc.games.misc
  462.  
  463. Bryan
  464. blarsen@robinhood.engg.uregina.ca  (larsenb@sedsystems.ca is obsolete on Dec.23)
  465.  
  466. ------------------------------
  467.  
  468. Date: Wed, 15 Dec 93 08:13 CST
  469. From: kimes@iwcs.att.com
  470. Subject: Mouse Drivers (was Re: GUS Daily Digest V9 #14)
  471.  
  472. On Wed, 15 Dec 1993, Paul Murgatroyd wrote:
  473.  
  474. #As for the mouse drivers.....I use a Logitech MouseMan Cordless, which is
  475. #much better than anything Microsoft produces in terms of mice. The
  476. #Logitech drivers have not given me any problems at all.
  477.  
  478. Does anyone know if these drivers are commercially available?  That is,
  479. can I buy the drivers without buying the mouse?  I assume that they would
  480. work with a standard MS two button mouse.
  481.  
  482. Kit Kimes; AT&T/NCR; Naperville,IL; ...att!iwcs!kimes (kimes@iwcs.att.com)
  483.  
  484. ------------------------------
  485.  
  486. Date: Wed, 15 Dec 93 12:11:45 -0800
  487. From: brian@ccnext.ucsf.edu (Brian Huddleston)
  488. Subject: New File....
  489.  
  490. Greetings all,
  491.  Just to let ya know I just uploaded this file to archive.epas.utoronto.ca:
  492.  
  493. Cool Edit v.1.31 is a waveform editor
  494. with features such as: Echo, Flange,
  495. Stretch with and without affecting
  496. pitch, delay, brainwave  synchronizer,
  497. envelope, filter, and music generator.
  498. Supports RIFF extra information, cue
  499. list and play list. View waves as 
  500. amplitude or frequency plots. Analyze
  501. component frequencies.  Wave scripts let
  502. you play back complex operations.
  503.  
  504. This program was written for Windows.   This is the best WAV editor that
  505. I have come across so far.  It is user friendly, and has more features 
  506. than I can shake a digital stick at...
  507.  
  508. brian@ccnext.ucsf.edu
  509.  
  510. ------------------------------
  511.  
  512. Date: 15 Dec 93 13:15:18 ADT
  513. From: "Craig G"  <J5OA@acad1.UnbSJ.CA>
  514. Subject: Windows - "Driver already in use"
  515.  
  516. Hello there everyone!
  517.     Well...I'm new to this scene...I just got my GUS in September
  518. and I haven't had any trouble up until now.
  519.     When I try to use GoldWave or Recording Session or Power
  520. Chords...like when I try to play a file...I get the message "Driver
  521. already in use" or "Driver already being used by another
  522. application".  Now...call me stupid...because I don't know much about
  523. this stuff...but what am I doing wrong?  I imagine it must have
  524. something to do with the way I have the drivers set up.  I'm not
  525. really sure as how to set them up properly.  Any tips would be
  526. greatly appreciated!
  527.     It seems that it just happened all of the sudden but I
  528. probably did something dumb!
  529.     My address is j5oa@acad1.unbsj.ca is you wanna help me out!
  530.     Thanks!
  531.  
  532.     Craig Galbraith
  533.  
  534. p.s.- Anybody know where I can get some MTMs or MODs that use 8-32
  535.     tracks?  I got the Try-Out of Multi-Tracker and I wanna see what
  536.     it can do before I spend the moolah to register it!
  537.  
  538.  
  539.  
  540.  
  541.                         are you phishsperienced?
  542.  
  543. ------------------------------
  544.  
  545. End of GUS Daily Digest V9 #16
  546. ******************************
  547.  
  548. To post to tomorrow's digest:                        <gus-general@dsd.es.com>
  549. To (un)subscribe or get help:                <gus-general-request@dsd.es.com>
  550. To contact a human (last resort):              <gus-general-owner@dsd.es.com>
  551.  
  552. FTP sites:           archive.epas.utoronto.ca              /pub/pc/ultrasound
  553.                      wuarchive.wustl.edu            /systems/ibmpc/ultrasound
  554.                      archive.orst.edu                    /pub/packages/gravis
  555.                      theoris.rz.uni-konstanz.de                /pub/sound/gus
  556.                      nctuccca.edu.tw                           /PC/ultrasound
  557. FTP mail server:     mail-server@nike.rz.uni-konstanz.de
  558.  
  559. Hints:
  560.       - Get the FAQ from the FTP sites or the request server.
  561.       - Mail to <gus-general-request@dsd.es.com> for info about other
  562.     GUS related mailing lists (programmers, musicians, etc.).
  563.  
  564.  
  565.